*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #03163E;
  --mid:     #315371;
  --cyan:    #00A2D9;
  --cyan-light: #33bce8;
  --green:   #2eb85c;
  --gold:    #D4AF37;
  --white:   #ffffff;
  --light-bg:#f4f7fb;
  --text-dark:#1a1a2e;
  --text-mid: #4a5568;
}

body { font-family: 'Open Sans', sans-serif; color: var(--text-dark); overflow-x: hidden; }

/* ─── TAX BOX HEADING (matches Annapurna page style) ─── */
.tax-box{
  width:100%;
  height:70px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  background: linear-gradient(to right, #009BD4 0%, #0285C3 25%, #046FB1 50%, #074D97 75%, #083D8B 100%);
  color:#fff;
  border-radius:0px;
  margin:20px 0;
  padding:10px;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
  position:relative;
  overflow:hidden;
  transition:0.4s ease;
}
.tax-box::before{
  content:"";
  position:absolute;
  width:200%;
  height:200%;
  background:radial-gradient(circle,rgba(255,255,255,0.15),transparent);
  top:-50%;
  left:-50%;
  animation:shine 6s linear infinite;
}
@keyframes shine{
  0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}
.tax-box h1{
  font-size:1.4rem;
  font-weight:700;
  line-height:1.6;
  font-family:'Montserrat',sans-serif;
  position:relative;
  z-index:2;
}
.tax-box:hover{
  transform:translateY(-5px) scale(1.01);
  box-shadow:0 25px 60px rgba(0,163,218,0.35);
}

/* ─── Nav bar ─── */
/* ─── Nav bar ─── */
/* ─── Nav bar ─── */
.crusher-section{
    background:#fff;
    padding:100px 8%;
    overflow:hidden;
}

.crusher-container{
    max-width:1300px;
    margin:auto;
}

.crusher-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.crusher-tag{
    display:inline-block;
    padding:10px 24px;
    background:rgba(0,163,218,.12);
    color:#00a3da;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.crusher-heading h2{
    font-size:52px;
    color:#111;
    margin-bottom:20px;
}

.crusher-heading p{
    color:#666;
    line-height:1.9;
    font-size:17px;
}

.crusher-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.crusher-image{
    position:relative;
}

.crusher-image::before{
    content:"";
    position:absolute;
    width:200px;
    height:200px;
    background:#00a3da;
    border-radius:50%;
    top:-35px;
    left:-35px;
    opacity:.12;
}

.crusher-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    position:relative;
    z-index:2;
}

.crusher-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.crusher-card{
    background:#fff;
    border:1px solid rgba(0,163,218,.15);
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.4s;
}

.crusher-card:hover{
    background:#00a3da;
    transform:translateY(-8px);
}

.crusher-card h3{
    font-size:22px;
    margin-bottom:12px;
    transition:.4s;
}

.crusher-card p{
    color:#666;
    line-height:1.7;
    transition:.4s;
}

.crusher-card:hover h3,
.crusher-card:hover p{
    color:#fff;
}

.crusher-impact{
    margin-top:80px;
    background:linear-gradient(135deg,#00a3da,#008ec0);
    padding:60px;
    border-radius:30px;
    color:#fff;
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:40px;
    align-items:center;
}

.crusher-story span{
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
}

.crusher-story h3{
    font-size:42px;
    margin:15px 0;
}

.crusher-story p{
    line-height:1.9;
}

.crusher-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.crusher-box{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    padding:30px 15px;
    text-align:center;
    border-radius:20px;
}

.crusher-box h2{
    font-size:40px;
    margin-bottom:10px;
}

.crusher-box span{
    font-size:14px;
}

@media(max-width:991px){

    .crusher-grid{
        grid-template-columns:1fr;
    }

    .crusher-content{
        grid-template-columns:1fr;
    }

    .crusher-impact{
        grid-template-columns:1fr;
        padding:35px;
    }

    .crusher-stats{
        grid-template-columns:1fr;
    }

    .crusher-heading h2{
        font-size:38px;
    }

    .crusher-story h3{
        font-size:30px;
    }
}


.shital-gallery-section{
    padding:90px 8%;
    background:#fff;
}

.shital-gallery-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 50px;
}

.shital-gallery-heading span{
    display:inline-block;
    padding:10px 24px;
    background:rgba(0,163,218,.12);
    color:#00a3da;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}

.shital-gallery-heading h2{
    font-size:48px;
    color:#111;
    margin-bottom:15px;
}

.shital-gallery-heading p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

.shital-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.shital-gallery-item{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    position:relative;
}

.shital-gallery-item img{
    width:100%;
    height:auto;          /* image cut nahi hogi */
    display:block;
    transition:0.6s ease;
}

.shital-gallery-item:hover img{
    transform:scale(1.08);
}

.shital-gallery-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.15),
        transparent
    );
    opacity:0;
    transition:.4s;
}

.shital-gallery-item:hover::after{
    opacity:1;
}

@media(max-width:991px){

    .shital-gallery{
        grid-template-columns:1fr;
    }

    .shital-gallery-heading h2{
        font-size:38px;
    }

}

/* ─── footer ─── */
/* ─── footer ─── */
/* ─── footer ─── */
.map-section {
  background: var(--light-bg);
  padding: 60px 24px;
}
.map-section .section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}
.map-section .section-label::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 10px auto 0;
  border-radius: 2px;
}
.map-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.map-wrap iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .page-hero h1 { font-size: 1.8rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 18px; }
  .map-wrap iframe { height: 280px; }
}

@media (max-width: 480px) {
  .page-hero { padding: 80px 18px 40px; }
  .page-hero h1 { font-size: 1.4rem; }
  .contact-container { padding: 40px 18px; }
}
